home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 4
/
Apprentice-Release4.iso
/
Source Code
/
Add-Ons
/
MPW
/
MPW re2c 1.1
/
token.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-06-01
|
314 b
|
24 lines
|
[
TEXT/KAHL
]
#ifndef _token_h
#define _token_h
// $Log: token.h,v $
//Revision 1.1 1994/04/08 15:27:59 peter
//Initial revision
//
#include "substr.h"
class Token {
public:
Str text;
uint line;
public:
Token(SubStr, uint);
};
inline Token::Token(SubStr t, uint l) : text(t), line(l) {
;
}
#endif